home *** CD-ROM | disk | FTP | other *** search
/ ShareWare OnLine 2 / ShareWare OnLine Volume 2 (CMS Software)(1993).iso / util2 / pgp22src.zip / SRC / CONFIG.H < prev    next >
C/C++ Source or Header  |  1993-03-07  |  271b  |  12 lines

  1. #ifndef CONFIGP_H
  2. #define CONFIGP_H
  3.  
  4. /* The types of input we can expect */
  5.  
  6. typedef enum { BOOL, NUMERIC, STRING } INPUT_TYPE;
  7.  
  8. extern int processConfigLine( char *option );
  9. extern int processConfigFile( char *configFileName );
  10.  
  11. #endif    /* ifndef CONFIGP_H */
  12.